-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add structured logging to logs input #25299
Conversation
The logging of the logs input is updated to make use of structured logging. Each logs input instance will create an unique ID, that will be logged as "input_id". The input and harvester will also add file state information like: source, state_id, finished, os_id. The os_id holds the inode, and state_id is the ID that is used internally by filebeat to track the file. By filtering the logs for one or the other ID, one can track all logs at a different level. Filtering by "state_id" allows us to monitor all logs and state changes for a given file, even if the file is renamed, closed and reopened.
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
Trends 🧪💚 Flaky test reportTests succeeded. Expand to view the summary
Test stats 🧪
|
Pinging @elastic/agent (Team:Agent) |
@urso is this something you want to add for 7.14? |
This pull request is now in conflicts. Could you fix it? 🙏
|
The item is 'complete' with this PR, so yeah it is 7.14 :) |
(cherry picked from commit 448afd4)
What does this PR do?
The logging of the logs input is updated to make use of structured
logging. Each logs input instance will create an unique ID, that will be
logged as "input_id".
The input and harvester will also add file state information like:
source, state_id, finished, os_id. The os_id holds the inode, and
state_id is the ID that is used internally by filebeat to track the
file.
Why is it important?
By filtering the logs for one or the other ID, one can track all
logs at a different level. Filtering by "state_id" allows us to monitor
all logs and state changes for a given file, even if the file is
renamed, closed and reopened.
Checklist
- [ ] I have commented my code, particularly in hard-to-understand areas- [ ] I have made corresponding changes to the documentation- [ ] I have made corresponding change to the default configuration files- [ ] I have added tests that prove my fix is effective or that my feature worksCHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.How to test this PR locally
Run filebeat with the logs input and debug logs enabled.
File state updates after a scan or harvester logs should log contextual information like the inode, state_id, harvester_id, input_id.